home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Guide.dxr / 00238.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  503 b   |  25 lines

  1. global gboardhotlist, gboardactslist, sbcontentsprite, sbhiliterect
  2.  
  3. on sideboardinit
  4.   mysbcontrolinit()
  5.   initglobals()
  6.   initcursor()
  7. end
  8.  
  9. on mysbcontrolinit
  10.   set sbhiliterect to 110
  11.   initsbcontrols()
  12.   puppetSprite(sbhiliterect, 1)
  13. end
  14.  
  15. on initglobals
  16.   set gboardhotlist to []
  17.   set gboardactslist to []
  18. end
  19.  
  20. on initcursor
  21.   set mycursor to the number of member "hand"
  22.   set mycursormask to the number of member "hand mask"
  23.   set the cursor of sprite sbhiliterect to [mycursor, mycursormask]
  24. end
  25.